home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / textual / stronged / !StrongED_Modes_TaskWindow < prev    next >
Encoding:
Text File  |  1996-07-09  |  811 b   |  51 lines

  1.  
  2. # TaskWindow is a special kind of Mode. The main difference from
  3. # ordinary modes, is that keypresses not mentioned in its keylist
  4. # are *not* passed on to the BaseMode, but sent directly to the
  5. # taskwindow.
  6.  
  7. ModeType TaskWindow
  8.  
  9.  
  10. KeyList
  11.     ^C        BlockCopy
  12.     F7        BlockCopy
  13.     ⇧Copy        CopyCursor_On
  14. #    Copy        CopyFromCC
  15. #    Left        CopyCursor_Left
  16. #    Right        CopyCursor_Right
  17. #    Up        CopyCursor_Up
  18. #    Down        CopyCursor_Down
  19. #    PgUp        PageUp
  20. #    PgDown        PageDown
  21.  
  22.     Return        CopyCursor_Off NewLine
  23.     ^Q        KillView
  24.  
  25. # Keys that we don't want sent to the Taskwindow :
  26.  
  27.     ^TAB        PassOn
  28.     ⇧TAB        PassOn
  29.     ^⇧Tab        SetDir
  30.     ⇧F11        PassOn
  31.     ^F11        PassOn
  32.     ^⇧F11        PassOn
  33.     F12        PassOn
  34.     ⇧F12        PassOn
  35.     ^F12        PassOn
  36.     ^⇧F12        PassOn
  37. End
  38.  
  39.  
  40. Functions
  41.  
  42.     Menu    Suspend task
  43.     Select    tw_suspend
  44.  
  45.     Menu    Resume task
  46.     Select    tw_resume
  47.  
  48.     Menu    Kill task
  49.     Select    tw_kill
  50.  
  51. End